home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / vfberror.sql < prev    next >
Text File  |  2000-05-12  |  380b  |  14 lines

  1. /*
  2. This view looks at fberror and separates the errors into Crash and other errors. 
  3. */
  4. create or replace view vfberror as
  5. select 'CRASH' Flag, det_seq_num, farebox_glid, err_string, conv_date
  6. from fberror
  7. where err_string like '%CRASH%'
  8. union
  9. select '     ' Flag, det_seq_num, farebox_glid, err_string, conv_date    
  10. from fberror
  11. where err_string not like '%CRASH%';
  12.  
  13.  
  14.